home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / a_utils / _archvrs / unix / tcx-1_0.lha / tcx-1.0 / Makefile < prev    next >
Makefile  |  1993-03-30  |  435b  |  28 lines

  1. #
  2. #        Makefile for tcx
  3. #
  4. #    Author : Stewart Forster, University Of Melbourne, 25/31993
  5. #
  6.  
  7. # C compiler of your choice.  Should be ansi'ish
  8. CC = cc            # IRIX, ULTRIX
  9. #CC = gcc        # SUNOS
  10.  
  11.  
  12. # Cflags of choice.
  13. CFLAGS = -s -O
  14.  
  15.  
  16. # Any libraries
  17. LIBS = -lmalloc -lc_s    # IRIX
  18. #LIBS =            # SUNOS, ULTRIX
  19.  
  20.  
  21. all:    tcx untcx
  22.  
  23. tcx:    tcx.c config.h
  24.     $(CC) $(CFLAGS) -o tcx tcx.c $(LIBS)
  25.  
  26. untcx:    untcx.c config.h
  27.     $(CC) $(CFLAGS) -o untcx untcx.c $(LIBS)
  28.